from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

69559

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-10-18
awscli - 1.35.9
Ebuild name:

app-admin/awscli-1.35.9

Description

Universal Command Line Environment for AWS

Added to portage

2024-10-18

boto3 - 1.35.43
Ebuild name:

dev-python/boto3-1.35.43

Description

The AWS SDK for Python

Added to portage

2024-10-18

chrome-binary-plugins - 130.0.6723.58
Ebuild name:

www-plugins/chrome-binary-plugins-130.0.6723.58

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2024-10-18

chrome-binary-plugins - 131.0.6778.3_beta
Ebuild name:

www-plugins/chrome-binary-plugins-131.0.6778.3_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2024-10-18

chrome-binary-plugins - 132.0.6779.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-132.0.6779.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2024-10-18

chromedriver-bin - 130.0.6723.58
Ebuild name:

www-apps/chromedriver-bin-130.0.6723.58

Description

WebDriver for Chrome

Added to portage

2024-10-18

chromium - 130.0.6723.58
Ebuild name:

www-client/chromium-130.0.6723.58

Description

Open-source version of Google Chrome web browser

Added to portage

2024-10-18

dist-kernel - 5.10.227
Ebuild name:

virtual/dist-kernel-5.10.227

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-10-18

dist-kernel - 5.15.168
Ebuild name:

virtual/dist-kernel-5.15.168

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-10-18

dist-kernel - 6.1.113
Ebuild name:

virtual/dist-kernel-6.1.113

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-10-18

dist-kernel - 6.11.4
Ebuild name:

virtual/dist-kernel-6.11.4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-10-18

dist-kernel - 6.6.57
Ebuild name:

virtual/dist-kernel-6.6.57

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-10-18

gentoo-kernel - 5.10.227
Ebuild name:

sys-kernel/gentoo-kernel-5.10.227

Description

Linux kernel built with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel - 5.15.168
Ebuild name:

sys-kernel/gentoo-kernel-5.15.168

Description

Linux kernel built with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel - 6.1.113
Ebuild name:

sys-kernel/gentoo-kernel-6.1.113

Description

Linux kernel built with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel - 6.11.4
Ebuild name:

sys-kernel/gentoo-kernel-6.11.4

Description

Linux kernel built with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel - 6.6.57
Ebuild name:

sys-kernel/gentoo-kernel-6.6.57

Description

Linux kernel built with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel-bin - 5.10.227
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.227

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel-bin - 5.15.168
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.168

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel-bin - 6.1.113
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.113

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel-bin - 6.11.4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.11.4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-10-18

gentoo-kernel-bin - 6.6.57
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.57

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-10-18

google-chrome - 130.0.6723.58
Ebuild name:

www-client/google-chrome-130.0.6723.58

Description

The web browser from Google

Added to portage

2024-10-18

google-chrome-beta - 131.0.6778.3
Ebuild name:

www-client/google-chrome-beta-131.0.6778.3

Description

The web browser from Google

Added to portage

2024-10-18

google-chrome-unstable - 132.0.6779.0
Ebuild name:

www-client/google-chrome-unstable-132.0.6779.0

Description

The web browser from Google

Added to portage

2024-10-18

haxe - 4.3.6-r1
Ebuild name:

dev-lang/haxe-4.3.6-r1

Description

Multi-target universal programming language

Added to portage

2024-10-18

isync - 1.5.0
Ebuild name:

net-mail/isync-1.5.0

Description

MailDir mailbox synchronizer

Added to portage

2024-10-18

lwt - 5.8.0
Ebuild name:

dev-ml/lwt-5.8.0

Description

Cooperative light-weight thread library for OCaml

Added to portage

2024-10-18

mccs - 1.1.18
Ebuild name:

dev-ml/mccs-1.1.18

Description

Multi Criteria CUDF Solver

Added to portage

2024-10-18

microsoft-edge-beta - 130.0.2849.43
Ebuild name:

www-client/microsoft-edge-beta-130.0.2849.43

Description

The web browser from Microsoft

Added to portage

2024-10-18

microsoft-edge-beta - 130.0.2849.46
Ebuild name:

www-client/microsoft-edge-beta-130.0.2849.46

Description

The web browser from Microsoft

Added to portage

2024-10-18

microsoft-edge-dev - 131.0.2889.0
Ebuild name:

www-client/microsoft-edge-dev-131.0.2889.0

Description

The web browser from Microsoft

Added to portage

2024-10-18

mosquitto - 2.0.20
Ebuild name:

app-misc/mosquitto-2.0.20

Description

An Open Source MQTT v3 Broker

Added to portage

2024-10-18

mtime - 2.1.0
Ebuild name:

dev-ml/mtime-2.1.0

Description

OCaml module to access monotonic wall-clock time

Added to portage

2024-10-18

ngtcp2 - 1.8.1
Ebuild name:

net-libs/ngtcp2-1.8.1

Description

Implementation of the IETF QUIC Protocol

Added to portage

2024-10-18

odoc - 2.4.3
Ebuild name:

dev-ml/odoc-2.4.3

Description

OCaml documentation generator

Added to portage

2024-10-18

opera - 114.0.5282.102
Ebuild name:

www-client/opera-114.0.5282.102

Description

A fast and secure web browser

Added to portage

2024-10-18

opera-beta - 114.0.5282.101
Ebuild name:

www-client/opera-beta-114.0.5282.101

Description

A fast and secure web browser

Added to portage

2024-10-18

pp - 2.0.0
Ebuild name:

dev-ml/pp-2.0.0

Description

Pretty-printing library

Added to portage

2024-10-18

qcoro - 0.11.0
Ebuild name:

dev-libs/qcoro-0.11.0

Description

C++ Coroutine Library for Qt

Added to portage

2024-10-18

repology - 1.2.3
Ebuild name:

app-emacs/repology-1.2.3

Description

Repology API access via Emacs Lisp

Added to portage

2024-10-18

ruff - 0.7.0
Ebuild name:

dev-util/ruff-0.7.0

Description

An extremely fast Python linter, written in Rust

Added to portage

2024-10-18

smb4k - 3.2.90
Ebuild name:

net-misc/smb4k-3.2.90

Description

Advanced network neighborhood browser

Added to portage

2024-10-18

tcsh - 6.24.13
Ebuild name:

app-shells/tcsh-6.24.13

Description

Enhanced version of the Berkeley C shell (csh)

Added to portage

2024-10-18

vanilla-kernel - 5.10.227
Ebuild name:

sys-kernel/vanilla-kernel-5.10.227

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-10-18

vanilla-kernel - 5.15.168
Ebuild name:

sys-kernel/vanilla-kernel-5.15.168

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-10-18

vanilla-kernel - 6.1.113
Ebuild name:

sys-kernel/vanilla-kernel-6.1.113

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-10-18

vanilla-kernel - 6.11.4
Ebuild name:

sys-kernel/vanilla-kernel-6.11.4

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-10-18

vanilla-kernel - 6.6.57
Ebuild name:

sys-kernel/vanilla-kernel-6.6.57

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-10-18

wayland-protocols - 1.38
Ebuild name:

dev-libs/wayland-protocols-1.38

Description

Wayland protocol files

Added to portage

2024-10-18

2024-10-17
Business-ISBN-Data - 20241014.1.0
Ebuild name:

dev-perl/Business-ISBN-Data-20241014.1.0

Description

Data pack for Business

Added to portage

2024-10-17

Convert-PEM - 0.90.0
Ebuild name:

dev-perl/Convert-PEM-0.90.0

Description

Read/write encrypted ASN.1 PEM files

Added to portage

2024-10-17

Crypt-OpenPGP - 1.180.0
Ebuild name:

dev-perl/Crypt-OpenPGP-1.180.0

Description

Pure-Perl OpenPGP-compatible PGP implementation

Added to portage

2024-10-17

CryptX - 0.84.0
Ebuild name:

dev-perl/CryptX-0.84.0

Description

Self-contained crypto toolkit

Added to portage

2024-10-17

Data-Buffer - 0.60.0
Ebuild name:

dev-perl/Data-Buffer-0.60.0

Description

Read/write buffer class

Added to portage

2024-10-17

DateTime-Format-Flexible - 0.360.0
Ebuild name:

dev-perl/DateTime-Format-Flexible-0.360.0

Description

Flexibly parse strings and turn them into DateTime object

Added to portage

2024-10-17

Dumbbench - 0.505.0
Ebuild name:

dev-perl/Dumbbench-0.505.0

Description

More reliable benchmarking with the least amount of thinking

Added to portage

2024-10-17

Faker - 30.6.0
Ebuild name:

dev-python/Faker-30.6.0

Description

A Python package that generates fake data for you

Added to portage

2024-10-17

HTML-Packer - 2.110.0
Ebuild name:

dev-perl/HTML-Packer-2.110.0

Description

Another HTML code cleaner

Added to portage

2024-10-17

Hash-Merge-Simple - 0.52.0
Ebuild name:

dev-perl/Hash-Merge-Simple-0.52.0

Description

Recursively merge two or more hashes, simply

Added to portage

2024-10-17

Test-ExpectAndCheck - 0.70.0
Ebuild name:

dev-perl/Test-ExpectAndCheck-0.70.0

Description

expect/check-style unit testing with object methods

Added to portage

2024-10-17

Test-Harness - 3.500.0
Ebuild name:

perl-core/Test-Harness-3.500.0

Description

Runs Perl standard test scripts with statistics

Added to portage

2024-10-17

Time-Out - 1.0.0
Ebuild name:

dev-perl/Time-Out-1.0.0

Description

Easily timeout long running operations

Added to portage

2024-10-17

URI - 5.300.0
Ebuild name:

dev-perl/URI-5.300.0

Description

Uniform Resource Identifiers (absolute and relative)

Added to portage

2024-10-17

XML-RSS - 1.640.0
Ebuild name:

dev-perl/XML-RSS-1.640.0

Description

Basic framework for creating and maintaining RSS files

Added to portage

2024-10-17

XS-Parse-Sublike - 0.290.0
Ebuild name:

dev-perl/XS-Parse-Sublike-0.290.0

Description

XS functions to assist in parsing sub-like syntax

Added to portage

2024-10-17

algol68g - 3.5.9
Ebuild name:

dev-lang/algol68g-3.5.9

Description

Algol 68 Genie compiler-interpreter

Added to portage

2024-10-17

aquamarine - 0.4.2
Ebuild name:

gui-libs/aquamarine-0.4.2

Description

Aquamarine is a very light linux rendering backend library

Added to portage

2024-10-17

autoconf-archive - 2024.10.16
Ebuild name:

dev-build/autoconf-archive-2024.10.16

Description

GNU Autoconf Macro Archive

Added to portage

2024-10-17

awscli - 1.35.8
Ebuild name:

app-admin/awscli-1.35.8

Description

Universal Command Line Environment for AWS

Added to portage

2024-10-17

boto3 - 1.35.42
Ebuild name:

dev-python/boto3-1.35.42

Description

The AWS SDK for Python

Added to portage

2024-10-17

botocore - 1.35.42
Ebuild name:

dev-python/botocore-1.35.42

Description

Low-level, data-driven core of boto 3

Added to portage

2024-10-17

cfn-lint - 1.17.0
Ebuild name:

dev-python/cfn-lint-1.17.0

Description

CloudFormation Linter

Added to portage

2024-10-17

command-not-found - 0.0.7
Ebuild name:

app-portage/command-not-found-0.0.7

Description

Command-not-found handler for Gentoo

Added to portage

2024-10-17

commons-logging - 1.3.4-r1
Ebuild name:

dev-java/commons-logging-1.3.4-r1

Description

Thin adapter allowing configurable bridging to other well known l

Added to portage

2024-10-17

cramjam - 2.9.0
Ebuild name:

dev-python/cramjam-2.9.0

Description

Thin Python bindings to de/compression algorithms in Rust

Added to portage

2024-10-17

django-auth-ldap - 5.1.0
Ebuild name:

dev-python/django-auth-ldap-5.1.0

Description

Django LDAP authentication backend

Added to portage

2024-10-17

dropbox - 210.4.4854
Ebuild name:

net-misc/dropbox-210.4.4854

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2024-10-17

dssp - 4.4.10
Ebuild name:

sci-chemistry/dssp-4.4.10

Description

The protein secondary structure standard

Added to portage

2024-10-17

dssp - 4.4.8
Ebuild name:

sci-chemistry/dssp-4.4.8

Description

The protein secondary structure standard

Added to portage

2024-10-17

ensurepip-setuptools - 75.2.0
Ebuild name:

dev-python/ensurepip-setuptools-75.2.0

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2024-10-17

fast_float - 6.1.6
Ebuild name:

dev-cpp/fast_float-6.1.6

Description

Fast and exact implementation of the C++ from_chars functions for number t

Added to portage

2024-10-17

findpython - 0.6.2
Ebuild name:

dev-python/findpython-0.6.2

Description

A utility to find python versions on your system

Added to portage

2024-10-17

fldigi - 4.2.06
Ebuild name:

media-radio/fldigi-4.2.06

Description

Sound card based multimode software modem for Amateur Radio use

Added to portage

2024-10-17

gentoo-sources - 5.10.227
Ebuild name:

sys-kernel/gentoo-sources-5.10.227

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-10-17

gentoo-sources - 5.15.168
Ebuild name:

sys-kernel/gentoo-sources-5.15.168

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-10-17

gentoo-sources - 6.1.113
Ebuild name:

sys-kernel/gentoo-sources-6.1.113

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-10-17

gentoo-sources - 6.11.4
Ebuild name:

sys-kernel/gentoo-sources-6.11.4

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-10-17

gentoo-sources - 6.6.57
Ebuild name:

sys-kernel/gentoo-sources-6.6.57

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-10-17

git - 2.47.0-r1
Ebuild name:

dev-vcs/git-2.47.0-r1

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2024-10-17

gnome-bluetooth - 46.2
Ebuild name:

net-wireless/gnome-bluetooth-46.2

Description

Bluetooth graphical utilities integrated with GNOME

Added to portage

2024-10-17

gnome-firmware - 47.0-r1
Ebuild name:

gnome-extra/gnome-firmware-47.0-r1

Description

Install firmware on devices

Added to portage

2024-10-17

gnome-music - 46.1
Ebuild name:

media-sound/gnome-music-46.1

Description

Music management for Gnome

Added to portage

2024-10-17

gnome-online-accounts - 3.50.4
Ebuild name:

net-libs/gnome-online-accounts-3.50.4

Description

GNOME framework for accessing online accounts

Added to portage

2024-10-17

gtranslator - 46.1
Ebuild name:

app-text/gtranslator-46.1

Description

GNOME Translation Editor

Added to portage

2024-10-17

httptools - 0.6.4
Ebuild name:

dev-python/httptools-0.6.4

Description

A collection of framework independent HTTP protocol utils

Added to portage

2024-10-17

hypothesis - 6.115.3
Ebuild name:

dev-python/hypothesis-6.115.3

Description

A library for property based testing

Added to portage

2024-10-17

hyprland - 0.44.1
Ebuild name:

gui-wm/hyprland-0.44.1

Description

A dynamic tiling Wayland compositor that doesn't sacrifice on its looks

Added to portage

2024-10-17

hyprland-protocols - 0.4.0
Ebuild name:

dev-libs/hyprland-protocols-0.4.0

Description

Wayland protocol extensions for Hyprland

Added to portage

2024-10-17

hyprlang - 0.5.3
Ebuild name:

dev-libs/hyprlang-0.5.3

Description

Official implementation library for the hypr config language

Added to portage

2024-10-17

hyprwayland-scanner - 0.4.2
Ebuild name:

dev-util/hyprwayland-scanner-0.4.2

Description

A Hyprland implementation of wayland-scanner, in and for C++

Added to portage

2024-10-17

ibus - 1.5.30
Ebuild name:

app-i18n/ibus-1.5.30

Description

Intelligent Input Bus for Linux / Unix OS

Added to portage

2024-10-17

ispc - 1.25.1
Ebuild name:

dev-lang/ispc-1.25.1

Description

Intel SPMD Program Compiler

Added to portage

2024-10-17

jellyfin-bin - 10.9.11-r1
Ebuild name:

www-apps/jellyfin-bin-10.9.11-r1

Description

Jellyfin puts you in control of managing and streaming your media

Added to portage

2024-10-17

kramdown-rfc - 1.7.19
Ebuild name:

app-text/kramdown-rfc-1.7.19

Description

An XML2RFC (RFC799x) backend for Thomas Leitner's kramdown markdown pa

Added to portage

2024-10-17

kubo - 0.30.0
Ebuild name:

net-p2p/kubo-0.30.0

Description

Main implementation of IPFS

Added to portage

2024-10-17

kwin - 6.2.1.1
Ebuild name:

kde-plasma/kwin-6.2.1.1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2024-10-17

ldb - 2.8.2
Ebuild name:

sys-libs/ldb-2.8.2

Description

LDAP-like embedded database

Added to portage

2024-10-17

libcifpp - 7.0.6
Ebuild name:

sci-libs/libcifpp-7.0.6

Description

Code to work with mmCIF and PDB files

Added to portage

2024-10-17

libcifpp - 7.0.7
Ebuild name:

sci-libs/libcifpp-7.0.7

Description

Code to work with mmCIF and PDB files

Added to portage

2024-10-17

libgcrypt - 1.11.0-r1
Ebuild name:

dev-libs/libgcrypt-1.11.0-r1

Description

General purpose crypto library based on the code used in GnuPG

Added to portage

2024-10-17

libqtxdg - 4.0.1
Ebuild name:

dev-libs/libqtxdg-4.0.1

Description

Qt Implementation of XDG Standards

Added to portage

2024-10-17

libshumate - 1.2.3
Ebuild name:

media-libs/libshumate-1.2.3

Description

Shumate is a GTK toolkit providing widgets for embedded maps

Added to portage

2024-10-17

libvirt - 10.8.0
Ebuild name:

app-emulation/libvirt-10.8.0

Description

C toolkit to manipulate virtual machines

Added to portage

2024-10-17

libvirt-python - 10.8.0
Ebuild name:

dev-python/libvirt-python-10.8.0

Description

libvirt Python bindings

Added to portage

2024-10-17

litecli - 1.12.3
Ebuild name:

dev-db/litecli-1.12.3

Description

CLI for SQLite with auto-completion and syntax highlighting

Added to portage

2024-10-17

llhttp - 9.2.1
Ebuild name:

net-libs/llhttp-9.2.1

Description

Port of http_parser to llparse

Added to portage

2024-10-17

lm-sensors - 3.6.2
Ebuild name:

sys-apps/lm-sensors-3.6.2

Description

Hardware Monitoring user-space utilities

Added to portage

2024-10-17

luv - 0.5.14-r1
Ebuild name:

dev-ml/luv-0.5.14-r1

Description

Binding to libuv cross-platform asynchronous I/O

Added to portage

2024-10-17

mathematica - 10.3.1-r2
Ebuild name:

sci-mathematics/mathematica-10.3.1-r2

Description

Wolfram Mathematica

Added to portage

2024-10-17

mtools - 4.0.45
Ebuild name:

sys-fs/mtools-4.0.45

Description

Utilities to access MS-DOS disks from Unix without mounting them

Added to portage

2024-10-17

namespace-autoclean - 0.310.0
Ebuild name:

dev-perl/namespace-autoclean-0.310.0

Description

Keep imports out of your namespace

Added to portage

2024-10-17

neatvnc - 0.8.1
Ebuild name:

gui-libs/neatvnc-0.8.1

Description

Liberally licensed VNC server library with a clean interface

Added to portage

2024-10-17

nextcloud - 29.0.8
Ebuild name:

www-apps/nextcloud-29.0.8

Description

Personal cloud that runs on your own server

Added to portage

2024-10-17

nnn - 5.0
Ebuild name:

app-misc/nnn-5.0

Description

The missing terminal file browser for X

Added to portage

2024-10-17

ocaml-ctypes - 0.23.0
Ebuild name:

dev-ml/ocaml-ctypes-0.23.0

Description

Library for binding to C libraries using pure OCaml

Added to portage

2024-10-17

oidc-agent - 5.2.2
Ebuild name:

net-misc/oidc-agent-5.2.2

Description

Agent and tools for managing OpenID Connect tokens on the command line

Added to portage

2024-10-17

openjdk - 11.0.25_p9
Ebuild name:

dev-java/openjdk-11.0.25_p9

Description

Open source implementation of the Java programming language

Added to portage

2024-10-17

openjdk - 17.0.13_p11
Ebuild name:

dev-java/openjdk-17.0.13_p11

Description

Open source implementation of the Java programming language

Added to portage

2024-10-17

openjdk - 21.0.5_p11
Ebuild name:

dev-java/openjdk-21.0.5_p11

Description

Open source implementation of the Java programming language

Added to portage

2024-10-17

openjdk - 23.0.1_p11
Ebuild name:

dev-java/openjdk-23.0.1_p11

Description

Open source implementation of the Java programming language

Added to portage

2024-10-17

openjdk - 8.432_p06
Ebuild name:

dev-java/openjdk-8.432_p06

Description

Open source implementation of the Java programming language

Added to portage

2024-10-17

osinfo-db - 20240701
Ebuild name:

sys-apps/osinfo-db-20240701

Description

osinfo database files

Added to portage

2024-10-17

pallets-sphinx-themes - 2.2.0
Ebuild name:

dev-python/pallets-sphinx-themes-2.2.0

Description

Sphinx themes for Pallets and related projects

Added to portage

2024-10-17

paper-clip - 5.5.1
Ebuild name:

app-text/paper-clip-5.5.1

Description

Edit the title, author, keywords and more details of PDF documents

Added to portage

2024-10-17

passwordsafe - 1.19.1
Ebuild name:

app-admin/passwordsafe-1.19.1

Description

Password manager with wxGTK based frontend

Added to portage

2024-10-17

pbs-installer - 2024.10.16
Ebuild name:

dev-python/pbs-installer-2024.10.16

Description

Installer for Python Build Standalone

Added to portage

2024-10-17

perl-Term-Table - 0.22.0
Ebuild name:

virtual/perl-Term-Table-0.22.0

Description

Virtual for

Added to portage

2024-10-17

perl-Test-Harness - 3.500.0
Ebuild name:

virtual/perl-Test-Harness-3.500.0

Description

Virtual for

Added to portage

2024-10-17

pgbouncer - 1.23.1
Ebuild name:

dev-db/pgbouncer-1.23.1

Description

Lightweight connection pooler for PostgreSQL

Added to portage

2024-10-17

pgcli - 4.1.0
Ebuild name:

dev-db/pgcli-4.1.0

Description

CLI for Postgres with auto-completion and syntax highlighting

Added to portage

2024-10-17

plasma-workspace - 6.2.1.1
Ebuild name:

kde-plasma/plasma-workspace-6.2.1.1

Description

KDE Plasma workspace

Added to portage

2024-10-17

plymouth - 22.02.122-r3
Ebuild name:

sys-boot/plymouth-22.02.122-r3

Description

Graphical boot animation (splash) and logger

Added to portage

2024-10-17

plymouth - 24.004.60-r1
Ebuild name:

sys-boot/plymouth-24.004.60-r1

Description

Graphical boot animation (splash) and logger

Added to portage

2024-10-17

psycopg - 2.9.10
Ebuild name:

dev-python/psycopg-2.9.10

Description

PostgreSQL database adapter for Python

Added to portage

2024-10-17

pv - 1.9.0
Ebuild name:

sys-apps/pv-1.9.0

Description

Pipe Viewer a tool for monitoring the progress of data through a pipe

Added to portage

2024-10-17

pyproject-fmt - 2.4.2
Ebuild name:

dev-python/pyproject-fmt-2.4.2

Description

Format your pyproject.toml file

Added to portage

2024-10-17

quantities - 0.16.1
Ebuild name:

dev-python/quantities-0.16.1

Description

Support for physical quantities with units, based on numpy

Added to portage

2024-10-17

rack - 2.2.10
Ebuild name:

dev-ruby/rack-2.2.10

Description

A modular Ruby webserver interface

Added to portage

2024-10-17

rack - 3.1.8
Ebuild name:

dev-ruby/rack-3.1.8

Description

A modular Ruby webserver interface

Added to portage

2024-10-17

rbnacl - 7.1.2
Ebuild name:

dev-ruby/rbnacl-7.1.2

Description

Provides a high-level toolkit for building cryptographic systems and protocol

Added to portage

2024-10-17

recoll - 1.40.1
Ebuild name:

app-misc/recoll-1.40.1

Description

Personal full text search package

Added to portage

2024-10-17

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2024-10-17

request - 0.3.3_p20220318
Ebuild name:

app-emacs/request-0.3.3_p20220318

Description

Compatible layer for URL request

Added to portage

2024-10-17

rescript-mode - 0.1.0_p20220613
Ebuild name:

app-emacs/rescript-mode-0.1.0_p20220613

Description

Emacs major mode for ReScript

Added to portage

2024-10-17

restclient - 0_p20220426
Ebuild name:

app-emacs/restclient-0_p20220426

Description

HTTP REST client tool for GNU Emacs

Added to portage

2024-10-17

samba - 4.19.9
Ebuild name:

net-fs/samba-4.19.9

Description

Samba Suite Version 4

Added to portage

2024-10-17

samba - 4.21.1
Ebuild name:

net-fs/samba-4.21.1

Description

Samba Suite Version 4

Added to portage

2024-10-17

setuptools - 75.2.0
Ebuild name:

dev-python/setuptools-75.2.0

Description

Collection of extensions to Distutils

Added to portage

2024-10-17

shotwell - 0.32.9
Ebuild name:

media-gfx/shotwell-0.32.9

Description

Open source photo manager for GNOME

Added to portage

2024-10-17

simsimd - 5.7.2
Ebuild name:

dev-python/simsimd-5.7.2

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2024-10-17

simsimd - 5.7.3
Ebuild name:

dev-python/simsimd-5.7.3

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2024-10-17

stellarium - 24.3
Ebuild name:

sci-astronomy/stellarium-24.3

Description

3D photo-realistic skies in real time

Added to portage

2024-10-17

swaylock - 1.8.0
Ebuild name:

gui-apps/swaylock-1.8.0

Description

Screen locker for Wayland

Added to portage

2024-10-17

syslog-ng - 4.8.1
Ebuild name:

app-admin/syslog-ng-4.8.1

Description

syslog replacement with advanced filtering features

Added to portage

2024-10-17

telegram-desktop - 5.6.3
Ebuild name:

net-im/telegram-desktop-5.6.3

Description

Official desktop client for Telegram

Added to portage

2024-10-17

thin-provisioning-tools - 1.1.0-r1
Ebuild name:

sys-block/thin-provisioning-tools-1.1.0-r1

Description

A suite of tools for thin provisioning on Linux

Added to portage

2024-10-17

thunderbird - 128.3.2
Ebuild name:

mail-client/thunderbird-128.3.2

Description

Thunderbird Mail Client

Added to portage

2024-10-17

thunderbird-bin - 128.3.2
Ebuild name:

mail-client/thunderbird-bin-128.3.2

Description

Thunderbird Mail Client

Added to portage

2024-10-17

timescaledb - 2.17.0
Ebuild name:

dev-db/timescaledb-2.17.0

Description

Open-source time-series SQL database

Added to portage

2024-10-17

tiny_httpd - 0.16-r1
Ebuild name:

dev-ml/tiny_httpd-0.16-r1

Description

Minimal HTTP server with a small request router

Added to portage

2024-10-17

tox - 4.23.0
Ebuild name:

dev-python/tox-4.23.0

Description

virtualenv-based automation of test activities

Added to portage

2024-10-17

tree-sitter - 0.23.0-r1
Ebuild name:

dev-python/tree-sitter-0.23.0-r1

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2024-10-17

tree-sitter - 0.23.1
Ebuild name:

dev-python/tree-sitter-0.23.1

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2024-10-17

tree-sitter - 0.24.3
Ebuild name:

dev-libs/tree-sitter-0.24.3

Description

Tree-sitter is a parser generator tool and an incremental parsing libra

Added to portage

2024-10-17

tree-sitter-cli - 0.24.3
Ebuild name:

dev-util/tree-sitter-cli-0.24.3

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2024-10-17

trio - 0.27.0
Ebuild name:

dev-python/trio-0.27.0

Description

Python library for async concurrency and I/O

Added to portage

2024-10-17

trippy - 0.11.0
Ebuild name:

net-analyzer/trippy-0.11.0

Description

A network diagnostic tool

Added to portage

2024-10-17

trove-classifiers - 2024.10.16
Ebuild name:

dev-python/trove-classifiers-2024.10.16

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2024-10-17

ugit - 0.4.5
Ebuild name:

app-shells/ugit-0.4.5

Description

PowerShell wrapper for git, automate repos and output git as objects

Added to portage

2024-10-17

uvicorn - 0.32.0
Ebuild name:

dev-python/uvicorn-0.32.0

Description

Lightning-fast ASGI server implementation

Added to portage

2024-10-17

vanilla-sources - 5.10.227
Ebuild name:

sys-kernel/vanilla-sources-5.10.227

Description

Full sources for the Linux kernel

Added to portage

2024-10-17

vanilla-sources - 5.15.168
Ebuild name:

sys-kernel/vanilla-sources-5.15.168

Description

Full sources for the Linux kernel

Added to portage

2024-10-17

vanilla-sources - 6.1.113
Ebuild name:

sys-kernel/vanilla-sources-6.1.113

Description

Full sources for the Linux kernel

Added to portage

2024-10-17

vanilla-sources - 6.11.4
Ebuild name:

sys-kernel/vanilla-sources-6.11.4

Description

Full sources for the Linux kernel

Added to portage

2024-10-17

vanilla-sources - 6.6.57
Ebuild name:

sys-kernel/vanilla-sources-6.6.57

Description

Full sources for the Linux kernel

Added to portage

2024-10-17

wrapt - 1.17.0_rc1
Ebuild name:

dev-python/wrapt-1.17.0_rc1

Description

Module for decorators, wrappers and monkey patching

Added to portage

2024-10-17

xml2rfc - 3.23.2
Ebuild name:

app-text/xml2rfc-3.23.2

Description

Generates RFCs and IETF drafts from document source in XML

Added to portage

2024-10-17

xmltodict - 0.14.2
Ebuild name:

dev-python/xmltodict-0.14.2

Description

Makes working with XML feel like you are working with JSON

Added to portage

2024-10-17

yarl - 1.15.4
Ebuild name:

dev-python/yarl-1.15.4

Description

Yet another URL library

Added to portage

2024-10-17

zeep - 4.3.1
Ebuild name:

dev-python/zeep-4.3.1

Description

A modern/fast Python SOAP client based on lxml / requests

Added to portage

2024-10-17

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 51.4 ms